/* Blog-specific styles */
.blog-header {
    background-color: #f8f9fa;
    padding: 60px 0 30px;
    margin-top: 60px;
    text-align: center;
}

.blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    color: #666;
    font-size: 14px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px 0;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.blog-content h2 {
    margin-top: 40px;
    font-size: 28px;
    color: #333;
}

.blog-content h3 {
    margin-top: 30px;
    font-size: 22px;
    color: #444;
}

.blog-content p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.blog-content li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.blog-content strong {
    color: #4e7bff;
    font-weight: 600;
}

.blog-image {
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-image figcaption {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

.cta-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin: 50px 0;
    text-align: center;
}

.cta-section h3 {
    margin-bottom: 20px;
}

.share-section {
    margin: 40px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-links {
    display: flex;
    gap: 15px;
}

.share-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f2f5;
    color: #333;
    transition: all 0.3s ease;
}

.share-links a:hover {
    background-color: #4e7bff;
    color: white;
}

.related-posts {
    margin: 60px 0;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 30px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.related-post-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
}

.related-post-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.related-post-content {
    padding: 20px;
}

.related-post-content h4 {
    margin-bottom: 10px;
    font-size: 18px;
}

.related-post-content p {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .share-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }
}
/* Add to your existing styles */
.author-info {
display: flex;
align-items: center;
gap: 15px;
}

.author-image {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
}

.read-more {
color: var(--primary-color);
font-weight: 500;
display: inline-block;
margin-top: 10px;
transition: var(--transition);
}

.read-more:hover {
color: var(--accent-color);
transform: translateX(5px);
}

.cta-buttons {
display: flex;
justify-content: center;
gap: 15px;
flex-wrap: wrap;
}